home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’95 / CyberProcDoggie / Source Code / Woof / Woof_SOM / WoofService.idl < prev    next >
Encoding:
Text File  |  1995-06-24  |  550 b   |  35 lines  |  [TEXT/MPS ]

  1. #ifndef WoofService_idl
  2. #define WoofService_idl
  3.  
  4. #include <somobj.idl>
  5. #include <somcls.idl>
  6.  
  7. #include "CyberService.idl"
  8.  
  9.  
  10. //==============================================================================
  11. // WoofService
  12. //==============================================================================
  13.  
  14. module AppleCyberdog
  15. {
  16.     interface WoofService : CyberService
  17.     {
  18.     #ifdef __SOMIDL__
  19.         implementation
  20.         {
  21.         functionprefix = WoofService__;
  22.     
  23.         override:
  24.             somInit,
  25.             somUninit,
  26.             CreateCyberItem;
  27.     
  28.         };
  29.     #endif
  30.     };
  31. };
  32.  
  33.  
  34. #endif // WoofService_idl
  35.